1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
| describe('#makeOffer', () => {
it('should add the offer to the offers of a vehicle listing', () => {
const factory = businessNetworkConnection.getBusinessNetwork().getFactory();
const seller = factory.newResource(NS, 'Member', 'daniel.selman@example.com'); seller.firstName = 'Dan'; seller.lastName = 'Selman'; seller.balance = 0;
const vehicle = factory.newResource(NS, 'Vehicle', 'CAR_001'); vehicle.owner = factory.newRelationship(NS, 'Member', seller.$identifier);
const listing = factory.newResource(NS, 'VehicleListing', 'LISTING_001'); listing.reservePrice = 100; listing.description = 'My nice car'; listing.state = 'FOR_SALE'; listing.vehicle = factory.newRelationship(NS, 'Vehicle', 'CAR_001');
const buyer = factory.newResource(NS, 'Member', 'sstone1@example.com'); buyer.firstName = 'Simon'; buyer.lastName = 'Stone'; buyer.balance = 1000;
const buyer2 = factory.newResource(NS, 'Member', 'whitemat@example.com'); buyer2.firstName = 'Matthew'; buyer2.lastName = 'White'; buyer2.balance = 100;
const auctioneer = factory.newResource(NS, 'Auctioneer', 'boss@auction.com'); auctioneer.firstName = 'Mr'; auctioneer.lastName = 'Smith';
const offer = factory.newTransaction(NS, 'Offer'); offer.member = factory.newRelationship(NS, 'Member', buyer.$identifier); offer.listing = factory.newRelationship(NS, 'VehicleListing', 'LISTING_001'); offer.bidPrice = 200;
return businessNetworkConnection.getAssetRegistry(NS + '.Vehicle') .then((vehicleRegistry) => {
return vehicleRegistry.add(vehicle) .then(() => { return businessNetworkConnection.getAssetRegistry(NS + '.VehicleListing'); }) .then((vehicleListingRegistry) => { return vehicleListingRegistry.add(listing); }) .then(() => { return businessNetworkConnection.getParticipantRegistry(NS + '.Member'); }) .then((userRegistry) => { return userRegistry.addAll([buyer, buyer2, seller]); }) .then(() => { return businessNetworkConnection.getParticipantRegistry(NS + '.Auctioneer'); }) .then((userRegistry) => { return userRegistry.addAll([auctioneer]); }) .then(() => { return businessNetworkConnection.submitTransaction(offer); }) .then(() => { const lowOffer = factory.newTransaction(NS, 'Offer'); lowOffer.member = factory.newRelationship(NS, 'Member', buyer2.$identifier); lowOffer.listing = factory.newRelationship(NS, 'VehicleListing', 'LISTING_001'); lowOffer.bidPrice = 50; return businessNetworkConnection.submitTransaction(lowOffer); }) .then(() => { return businessNetworkConnection.getAssetRegistry(NS + '.VehicleListing'); }) .then((vehicleListingRegistry) => { return vehicleListingRegistry.get(listing.$identifier); }) .then((newListing) => { newListing.offers.length.should.equal(2); }) .then(() => { const closeBidding = factory.newTransaction(NS, 'CloseBidding'); closeBidding.listing = factory.newRelationship(NS, 'VehicleListing', 'LISTING_001'); return businessNetworkConnection.submitTransaction(closeBidding); }) .then(() => { return businessNetworkConnection.getAssetRegistry(NS + '.VehicleListing'); }) .then((vehicleListingRegistry) => { return vehicleListingRegistry.get(listing.$identifier); }) .then((newListing) => { newListing.state.should.equal('SOLD'); }) .then(() => { return businessNetworkConnection.getParticipantRegistry(NS + '.Member'); }) .then((userRegistry) => { return userRegistry.get(buyer.$identifier); }) .then((buyer) => { buyer.balance.should.equal(800); }) .then(() => { return businessNetworkConnection.getParticipantRegistry(NS + '.Member'); }) .then((userRegistry) => { return userRegistry.get(seller.$identifier); }) .then((newSeller) => { newSeller.balance.should.equal(200); }) .then(() => { return businessNetworkConnection.getParticipantRegistry(NS + '.Member'); }) .then((userRegistry) => { return userRegistry.get(buyer.$identifier); }) .then((newBuyer) => { newBuyer.balance.should.equal(800); }) .then(() => { return businessNetworkConnection.getAssetRegistry(NS + '.Vehicle'); }) .then((vehicleRegistry) => { return vehicleRegistry.get(vehicle.$identifier); }) .then((newVehicle) => { newVehicle.owner.getIdentifier().should.equal(buyer.$identifier); }); }); });
|